crypto/sha1.digest.h (field)
33 uses
crypto/sha1 (current package)
sha1.go#L41: h [5]uint32
sha1.go#L58: b = byteorder.BEAppendUint32(b, d.h[0])
sha1.go#L59: b = byteorder.BEAppendUint32(b, d.h[1])
sha1.go#L60: b = byteorder.BEAppendUint32(b, d.h[2])
sha1.go#L61: b = byteorder.BEAppendUint32(b, d.h[3])
sha1.go#L62: b = byteorder.BEAppendUint32(b, d.h[4])
sha1.go#L77: b, d.h[0] = consumeUint32(b)
sha1.go#L78: b, d.h[1] = consumeUint32(b)
sha1.go#L79: b, d.h[2] = consumeUint32(b)
sha1.go#L80: b, d.h[3] = consumeUint32(b)
sha1.go#L81: b, d.h[4] = consumeUint32(b)
sha1.go#L97: d.h[0] = init0
sha1.go#L98: d.h[1] = init1
sha1.go#L99: d.h[2] = init2
sha1.go#L100: d.h[3] = init3
sha1.go#L101: d.h[4] = init4
sha1.go#L186: byteorder.BEPutUint32(digest[0:], d.h[0])
sha1.go#L187: byteorder.BEPutUint32(digest[4:], d.h[1])
sha1.go#L188: byteorder.BEPutUint32(digest[8:], d.h[2])
sha1.go#L189: byteorder.BEPutUint32(digest[12:], d.h[3])
sha1.go#L190: byteorder.BEPutUint32(digest[16:], d.h[4])
sha1.go#L237: for i, s := range d.h {
sha1.go#L257: for i, s := range d.h {
sha1block.go#L23: h0, h1, h2, h3, h4 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4]
sha1block.go#L82: dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4] = h0, h1, h2, h3, h4